home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / windows / ini_lib3.zip / INI.H < prev    next >
Text File  |  1997-05-11  |  319b  |  12 lines

  1. /* Ini File library header file */
  2.  
  3.  
  4. #define INI_FOUND       3
  5. #define INI_NOT_FOUND   4
  6. #define INI_FILE_ERROR  5
  7. #define INI_UPDATE_SUCCESS  6
  8.  
  9. int read_ini( char *filename, char *field_name, char *data, char *ret_string );
  10. int write_ini( char *filename, char *field_name, char *data, char *new_string );
  11.  
  12.